home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 4
/
Apprentice-Release4.iso
/
Source Code
/
Libraries
/
C Internet Config
/
IC Application Source ƒ
/
68k Internet Config ƒ
/
LongCoords.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-11-19
|
412 b
|
32 lines
|
[
TEXT/SPM
]
/*
* LongCoords.h
*
* C/C++ interface to the WASTE text engine:
* Long Coordinates
*
* version 1.0
*
* Copyright (c) 1993-1994 Marco Piovanelli
* All Rights Reserved
*
*/
#ifndef __LONGCOORDINATES__
#ifndef _LongCoords_
#define _LongCoords_
typedef struct LongPt {
long v;
long h;
} LongPt;
typedef struct LongRect {
long top;
long left;
long bottom;
long right;
} LongRect;
#endif
#endif